home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-09-08 | 491 b | 31 lines |
- package com.symantec.itools.frameworks.application.commandline;
-
-
- /**
- * @author Symantec Internet Tools Division
- * @version 1.0
- * @since VCafe 3.0
- */
-
- public abstract class EmptyOption
- extends Option
- {
- protected EmptyOption()
- {
- }
-
- protected EmptyOption(String[] flags)
- {
- super(flags);
- }
-
- /**
- * @since VCafe 3.0
- */
-
- protected int getConsumedCount()
- {
- return (0);
- }
- }
-